翻訳と辞書
Words near each other
・ Rakautao Railway Station
・ Rakaw
・ Rakaye Mossi
・ Rakaye Yarcé
・ RAKBANK
・ Rakby
・ Rake
・ Rake (angle)
・ Rake (Australian TV series)
・ Rake (band)
・ Rake (cellular automaton)
・ Rake (character)
・ Rake (geology)
・ Rake (poker)
・ Rake (singer)
Rake (software)
・ Rake (theatre)
・ Rake (tool)
・ Rake (U.S. TV series)
・ Rake and Ramblin' Man
・ Rake angle
・ Rake Brook Reservoir
・ Rake Hall
・ Rake In Grass
・ Rake Is My Co-Pilot
・ Rake race
・ Rake receiver
・ Rake Yohn
・ Rake, Iowa
・ Rake, Kostel


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Rake (software) : ウィキペディア英語版
Rake (software)

Rake is a software task management and build automation tool. It allows you to specify tasks and describe dependencies as well as to group tasks in a namespace.
It is similar to SCons and Make, but it has a number of differences. The tool is written in the Ruby programming language and the Rakefiles (equivalent of Makefiles in Make) use Ruby syntax. It was originated by Jim Weirich.
Rake uses Ruby's anonymous function blocks to define various tasks, allowing the use of Ruby syntax. It has a library of common tasks: for example, functions to do common file-manipulation tasks and a library to remove compiled files (the "clean" task). Like Make, Rake can also synthesize tasks based on patterns: for example, automatically building a file compilation task based on filename patterns. Rake is now part of the standard library from Ruby version 1.9 onward.
==Example==
Below is an example of a simple Rake script to build a C Hello World program.

file 'hello.o' => 'hello.c' do
sh 'cc -c -o hello.o hello.c'
end
file 'hello' => 'hello.o' do
sh 'cc -o hello hello.o'
end

For further examples, see the (Rakefile format ) documentation.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Rake (software)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.